home *** CD-ROM | disk | FTP | other *** search
/ Cre@te Online 2000 December / Cre@teOnline CD05.iso / MacSoft / XML ConsoleMax.sea / XML ConsoleMax / Required / ldapjdk.jar / netscape / ldap / client / opers / JDAPModifyResponse.class (.txt) < prev    next >
Encoding:
Java Class File  |  1999-04-13  |  813 b   |  20 lines

  1. package netscape.ldap.client.opers;
  2.  
  3. import java.io.IOException;
  4. import netscape.ldap.ber.stream.BERElement;
  5. import netscape.ldap.ber.stream.BERTag;
  6.  
  7. public class JDAPModifyResponse extends JDAPResult implements JDAPProtocolOp {
  8.    public JDAPModifyResponse(BERElement var1) throws IOException {
  9.       super(((BERTag)var1).getValue());
  10.    }
  11.  
  12.    public int getType() {
  13.       return 7;
  14.    }
  15.  
  16.    public String toString() {
  17.       return "ModifyResponse " + super.getParamString();
  18.    }
  19. }
  20.